home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / delphi1 / Disk15 / TWOFORMS.PAK / DETAILS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  401 b   |  25 lines

  1. unit Details;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinTypes, WinProcs, Classes, Graphics, Forms, Controls,
  7.   StdCtrls, DB, DBCtrls, Buttons, Mask;
  8.  
  9. type
  10.   TDetailView = class(TForm)
  11.     Label1: TLabel;
  12.     Population: TLabel;
  13.     DataSource1: TDataSource;
  14.     DBEdit1: TDBEdit;
  15.     DBEdit2: TDBEdit;
  16.     DBNavigator1: TDBNavigator;
  17.     Button1: TButton;
  18.   end;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. end.
  25.